home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinXP Taskbar Grouping.xpl < prev    next >
Text File  |  2002-03-18  |  2KB  |  63 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="5"
  4. "UIPATH"="Appearance\Taskbar"
  5. "NAME"="Taskbar Window Grouping"
  6. "VERSION"="1.01"
  7. "LANGUAGE"="VBScript"
  8. "OSVERSION"="0000011"
  9. "TEXT 1"="Group app with "oldest" windows first [default]"
  10. "TEXT 2"="Group app with most windows open first"
  11. "TEXT 3"="Group any app with at least two windows open"
  12. "TEXT 4"="Group any app with at least three windows open"
  13. "TEXT 5"="Group any app with at least four windows open"
  14. "DESCRIPTION 1"="Windows XP provides a feature that allows the taskbar to "group" similar windows together. This means, instead of e.g. three windows of Internet Explorer that clutter your taskbar, you only have one icon visible."
  15. "DESCRIPTION 2"="The first and second option tells Windows only to use grouping when the space in your taskbar is getting short. This means, while there there is enough space in your taskbar to display all Windows no grouping will be done."
  16. "DESCRIPTION 3"="Option three to five tell Windows to ALWAYS use grouping, regardless if there is enough space to display all windows."
  17. "AUTHOR"="Xteq Systems"
  18. "CONTACTURL"="http://www.xteq.com"
  19. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  20. "COMMENT 1"="Thanks to ps@ct.heise.de!"
  21.  
  22.  
  23. sV="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarGroupSize" 'DW
  24.  
  25. Sub Plugin_Initialize 
  26.  i=RegReadValue(sV)
  27.  if i=0 then SetUIElement 1,true
  28.  if i=1 then SetUIElement 2,true
  29.  if i=2 then SetUIElement 3,true
  30.  if i=3 then SetUIElement 4,true
  31.  if i=4 then SetUIElement 5,true
  32. End Sub
  33.  
  34.  
  35. Sub Plugin_CheckData(ElementIndex)
  36. End Sub
  37.  
  38.  
  39.  
  40. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  41.  if GetUIElement(1)=true then
  42.     s=0
  43.  elseif GetUIElement(2)=true then
  44.     s=1
  45.  elseif GetUIElement(3)=true then
  46.     s=2
  47.  elseif GetUIElement(4)=true then
  48.     s=3
  49.  elseif GetUIElement(5)=true then
  50.     s=4
  51.  end if
  52.  
  53.  Call RegWriteValue(sV,s,2)
  54.  Call Logoff()
  55. End Sub
  56.  
  57.  
  58. Sub Plugin_Terminate 
  59. End Sub
  60.  
  61.  
  62.  
  63.